Description
A page settings element consists of page settings along with a name used to associate the page settings with an image page, page range, or image file.
Diagram
Overview
|
pagesettingstype
A page settings element consists of page settings along with a name used to associate the page settings with an image page, page range, or image file.
|
Name required xsd:NCName
The Name attribute is used to associate page settings with an image page, page range, or image file.
|
|
InitialImageWindowBackgroundColor optional colortype Simple Type
The InitialImageWindowBackgroundColor attribute is used to specify the background color for the image window.
|
|
SelectionRectangle optional Restriction of xsd:string
The SelectionRectangle attribute is used to specify an initial selection on the page.
|
|
Used By
Attributes
Name | Type | Use | Default | Fixed | Description |
Name | xsd:NCName | required | | | The Name attribute is used to associate page settings with an image page, page range, or image file. |
InitialImageWindowBackgroundColor | colortype Simple Type | optional | | | The InitialImageWindowBackgroundColor attribute is used to specify the background color for the image window. |
SelectionRectangle | Restriction of xsd:string | optional | | | The SelectionRectangle attribute is used to specify an initial selection on the page. |
Source
<xsd:complexType name="pagesettingstype" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:annotation>
<xsd:documentation>A page settings element consists of page settings along with a name used to associate the page settings with an image page, page range, or image file.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="Name" type="xsd:NCName" use="required">
<xsd:annotation>
<xsd:documentation>The Name attribute is used to associate page settings with an image page, page range, or image file.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="InitialImageWindowBackgroundColor" type="colortype" use="optional">
<xsd:annotation>
<xsd:documentation>The InitialImageWindowBackgroundColor attribute is used to specify the background color for the image window.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="SelectionRectangle" use="optional">
<xsd:annotation>
<xsd:documentation>The SelectionRectangle attribute is used to specify an initial selection on the page.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:annotation>
<xsd:documentation>The attribute value is set by using the following selection rectangle format.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:annotation>
<xsd:documentation>The attribute value must be in this format.</xsd:documentation>
</xsd:annotation>
<xsd:pattern value="\d+([.]\d+)?[,]\d+([.]\d+)?[,]\d+([.]\d+)?[,]\d+([.]\d+)?">
<xsd:annotation>
<xsd:documentation>The selection rectangle is defined by two points on opposite corners of the rectangle, in native image coordinates, with each coordinate separated by a comma.</xsd:documentation>
</xsd:annotation>
</xsd:pattern>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
|
See Also